home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / aros / devs / cdinputhandler.c next >
Encoding:
C/C++ Source or Header  |  1996-09-12  |  1.1 KB  |  58 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: cdinputhandler.c,v 1.1 1996/08/23 17:32:23 digulla Exp $
  4.     $Log: cdinputhandler.c,v $
  5.     Revision 1.1  1996/08/23 17:32:23  digulla
  6.     Implementation of the console.device
  7.  
  8.  
  9.     Desc:
  10.     Lang: english
  11. */
  12.  
  13. /*****************************************************************************
  14.  
  15.     NAME */
  16.     #include <exec/libraries.h>
  17.     #include <devices/inputevent.h>
  18.     #include <clib/console_protos.h>
  19.  
  20.     __AROS_LH2(struct InputEvent *, CDInputHandler,
  21.  
  22. /*  SYNOPSIS */
  23.     __AROS_LHA(struct InputEvent *, events, A0),
  24.     __AROS_LHA(struct Library    *, consoleDevice, A1),
  25.  
  26. /*  LOCATION */
  27.     struct Library *, ConsoleDevice, 7, Console)
  28.  
  29. /*  FUNCTION
  30.  
  31.     INPUTS
  32.  
  33.     RESULT
  34.  
  35.     NOTES
  36.  
  37.     EXAMPLE
  38.  
  39.     BUGS
  40.  
  41.     SEE ALSO
  42.  
  43.     INTERNALS
  44.  
  45.     HISTORY
  46.     29-10-95    digulla automatically created from
  47.                 console_lib.fd and clib/console_protos.h
  48.  
  49. *****************************************************************************/
  50. {
  51.     __AROS_FUNC_INIT
  52.     __AROS_BASE_EXT_DECL(struct Library *,ConsoleDevice)
  53.  
  54.     return NULL;
  55.  
  56.     __AROS_FUNC_EXIT
  57. } /* CDInputHandler */
  58.